page.module.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .page {
  2. height: 100%;
  3. }
  4. .Rankpage {
  5. padding: 0.1rem;
  6. }
  7. .top {
  8. display: flex;
  9. align-items: stretch;
  10. background: linear-gradient(to bottom, #484a4c, #181a1c);
  11. border-radius: 0.2rem;
  12. padding: 0.06rem;
  13. div {
  14. border-radius: 0.15rem;
  15. border: 1px solid #35363a;
  16. background: #1a1a20;
  17. }
  18. .topIcon {
  19. width: 0.3rem;
  20. height: 0.3rem;
  21. margin-right: 0.1rem;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. img {
  26. width: 70%;
  27. }
  28. }
  29. .topContent {
  30. flex: 1;
  31. box-sizing: border-box;
  32. padding: 0 0.1rem;
  33. display: flex;
  34. align-items: center;
  35. }
  36. }
  37. .rankItem {
  38. background-size: 100% 100%;
  39. border-radius: 0.15rem;
  40. border: 1px solid #767779;
  41. overflow: hidden;
  42. height: 2.1rem;
  43. display: flex;
  44. flex-direction: column;
  45. justify-content: space-between;
  46. margin-bottom: 0.1rem;
  47. .rankTop {
  48. padding: 0.1rem 0.1rem 0 0.1rem;
  49. width: 60%;
  50. flex: 1;
  51. display: flex;
  52. flex-direction: column;
  53. justify-content: space-around;
  54. .rankTitle {
  55. font-size: 0.18rem;
  56. font-weight: 700;
  57. line-height: 1.1;
  58. margin-bottom: 0.1rem;
  59. }
  60. .rankMoney {
  61. background-image: url("/rank/money_bg.webp");
  62. background-size: 100% 100%;
  63. background-repeat: no-repeat;
  64. }
  65. .rankMoneyText {
  66. font-size: 0.2rem;
  67. background: linear-gradient(to bottom, #f8e0b8, #e9a651);
  68. background-clip: text;
  69. -webkit-background-clip: text;
  70. color: transparent;
  71. padding: 0.08rem 0.15rem;
  72. font-weight: 700;
  73. }
  74. }
  75. .rankFooter {
  76. padding: 0.1rem 0.15rem;
  77. background-color: rgba(255, 255, 255, 0.15);
  78. display: flex;
  79. align-items: center;
  80. justify-content: space-between;
  81. }
  82. }